/* Social media icon hover effect */
.footer-social a svg {
    transition: transform 0.3s cubic-bezier(0.4, 0.2, 0.2, 1), fill 0.3s cubic-bezier(0.4, 0.2, 0.2, 1);
}
.footer-social a:hover svg {
    transform: scale(1.25);
    fill: #814bc8;
}
/* Remove underline/blue point from social media icons in footer */
.footer-social a {
    text-decoration: none !important;
    outline: none !important;
}
.pricing-card .cta-button {
    /* Ensure all pricing buttons have a smooth transition */
        transition:
            background 0.45s cubic-bezier(0.4, 0.2, 0.2, 1),
            color 0.35s cubic-bezier(0.4, 0.2, 0.2, 1),
            box-shadow 0.45s cubic-bezier(0.4, 0.2, 0.2, 1),
            transform 0.45s cubic-bezier(0.4, 0.2, 0.2, 1);
}

/* Enterprise plan button hover: gradient background */
.pricing-card:last-child .cta-button:hover {
    background: linear-gradient(90deg, #814bc8 0%, #c84baf 100%) !important;
    color: #fff;
}
/* Benefits Section */
.benefits {
    margin-top: 40px;
    padding: 0 24px 80px 24px;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}
.benefit-card {
    background: #111;
    border-radius: 14px;
    border: 1px solid #232323;
    padding: 32px 28px;
    box-shadow: 0 2px 24px rgba(129,75,200,0.07);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s, border 0.2s;
}
.benefit-card:hover {
    box-shadow: 0 6px 32px rgba(129,75,200,0.13);
    border: 1px solid #814bc8;
}
.benefit-icon {
    font-size: 32px;
    color: #814bc8;
    margin-bottom: 18px;
}
.benefit-icon i {
    width: 32px;
    height: 32px;
    stroke-width: 2px;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: -60%;
    left: -30%;
    width: 60%;
    height: 220%;
    background: linear-gradient(120deg, transparent, rgba(85, 85, 85, 0.55), transparent);
    transform: translateX(-120%);
    transition: transform 0.6s ease;
        }

.benefit-card:hover {
    transform: translateY(-1px) scale(1.02);
    
}

.benefit-card:hover::after {
    transform: translateX(220%);
}

/* Pricing Section */
.pricing {
    margin: 100px 0 0 0;
    padding: 0 24px 80px 24px;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}
.pricing-card {
    background: #111;
    border-radius: 14px;
    border: 1px solid #232323;
    padding: 40px 32px;
    box-shadow: 0 2px 24px rgba(129,75,200,0.07);
    position: relative;
    overflow: hidden;
    transition:
        box-shadow 0.45s cubic-bezier(0.4, 0.2, 0.2, 1),
        border 0.35s cubic-bezier(0.4, 0.2, 0.2, 1),
        transform 0.45s cubic-bezier(0.4, 0.2, 0.2, 1),
        background 0.5s cubic-bezier(0.4, 0.2, 0.2, 1),
        color 0.35s cubic-bezier(0.4, 0.2, 0.2, 1);
}
.pricing-card::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) scaleX(0.7);
    width: 80%;
    height: 32px;
    background: radial-gradient(ellipse at center, rgba(129,75,200,0.25) 0%, rgba(129,75,200,0.08) 70%, transparent 100%);
    opacity: 0;
    pointer-events: none;
    filter: blur(2px);
    transition: opacity 0.45s cubic-bezier(0.4, 0.2, 0.2, 1);
    z-index: 1;
}
.pricing-card:hover {
    box-shadow: 0 12px 48px 0 rgba(129,75,200,0.25), 0 2px 24px rgba(129,75,200,0.13);
    border: 1.5px solid #814bc8; 
    transform: scale(1.045);
}
.pricing-card:hover::after {
    opacity: 1;
}
.pricing-card.popular, .pricing-card[style*="linear-gradient"] {
    background: linear-gradient(135deg, #181818 60%, #814bc8 100%) !important;
    box-shadow: 0 2px 24px rgba(129,75,200,0.13);
    transition:
        box-shadow 0.45s cubic-bezier(0.4, 0.2, 0.2, 1),
        border 0.35s cubic-bezier(0.4, 0.2, 0.2, 1),
        transform 0.45s cubic-bezier(0.4, 0.2, 0.2, 1),
        background 0.5s cubic-bezier(0.4, 0.2, 0.2, 1),
        color 0.35s cubic-bezier(0.4, 0.2, 0.2, 1);
    position: relative;
    z-index: 2;
}
.pricing-card.popular::after, .pricing-card[style*="linear-gradient"]::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) scaleX(0.8);
    width: 90%;
    height: 38px;
    background: radial-gradient(ellipse at center, rgba(129,75,200,0.32) 0%, rgba(129,75,200,0.12) 70%, transparent 100%);
    opacity: 0;
    pointer-events: none;
    filter: blur(3px);
    transition: opacity 0.45s cubic-bezier(0.4, 0.2, 0.2, 1);
    z-index: 1;
}
.pricing-card.popular:hover, .pricing-card[style*="linear-gradient"]:hover {
    box-shadow: 0 18px 64px 0 rgba(129,75,200,0.32), 0 2px 24px rgba(129,75,200,0.18);
    transform: scale(1.06);
    background: linear-gradient(135deg, #181818 40%, #814bc8 80%, #c84baf 100%) !important;
}
.pricing-card.popular:hover::after, .pricing-card[style*="linear-gradient"]:hover::after {
    opacity: 1;
    
}
.pricing-card ul {
    color: #bbb;
    font-size: 15px;
    line-height: 1.7;
    list-style: none;
    padding: 0;
    margin: 0;
}
.pricing-card li {
    margin-bottom: 4px;
}
/* Navigation Logo and Headline Styles */
.logo {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(135deg, #814bc8, #c84baf);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo img {
    height: 40px;
    width: auto;
    margin-right: 8px;
    display: block;
}
/* Footer Navigation Styles */
.footer-nav {
    width: 100%;
    padding: 32px 0 0 0;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px 32px 32px;
    border-bottom: 1px solid #232323;
}
.footer-left {
    display: flex;
    align-items: center;
    gap: 18px;
}
.footer-logo {
    height: 40px;
    width: auto;
}
.footer-info {
    color: #bbb;
    font-size: 16px;
    text-align: left;
}
.footer-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}
.footer-links a {
    color: #bbb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #814bc8;
}
.footer-copyright {
    text-align: center;
    color: #666;
    font-size: 14px;
    padding: 24px 32px;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .footer-left {
        flex-direction: column;
        gap: 12px;
    }

    .footer-info {
        text-align: center;
        font-size: 14px;
    }

    .footer-links {
        padding: 0 16px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-copyright {
        font-size: 12px;
        padding: 16px;
    }
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #000;
            color: #fff;
            overflow-x: hidden;
        }

        /* ========================================
           MODERN NAVIGATION STYLES
           ======================================== */
        
        .nav-modern {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 10000;
            padding: 16px 32px;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
        }
        
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }
        
        /* Logo */
        .nav-logo {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        
        .nav-logo img {
            height: 48px;
            width: auto;
            transition: transform 0.3s ease;
        }
        
        .nav-logo:hover img {
            transform: scale(1.05);
        }
        
        /* Center Pill Navigation */
        .nav-pill {
            background: rgba(30, 30, 30, 0.9);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 100px;
            padding: 6px 8px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3),
                        inset 0 1px 0 rgba(255, 255, 255, 0.05);
        }
        
        .nav-menu {
            display: flex;
            align-items: center;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 4px;
        }
        
        .nav-menu li {
            margin: 0;
            padding: 0;
        }
        
        .nav-link {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 10px 18px;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            font-family: 'Segoe UI', system-ui, sans-serif;
            border-radius: 100px;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            white-space: nowrap;
            background: transparent;
            border: none;
            cursor: pointer;
        }
        
        .nav-link:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.08);
        }
        
        .nav-link.active {
            color: #fff;
            background: rgba(129, 75, 200, 0.2);
            box-shadow: 0 0 20px rgba(129, 75, 200, 0.3);
        }
        
        /* Language Toggle in Nav */
        .nav-lang-toggle {
            padding: 8px 12px;
            border-radius: 100px;
        }
        
        .nav-lang-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        /* Right CTA Button */
        .nav-cta-wrapper {
            flex-shrink: 0;
        }
        
        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: rgba(255, 255, 255, 0.04);
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            font-family: 'Segoe UI', system-ui, sans-serif;
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 100px;
            white-space: nowrap;
            box-shadow:
                0 0 12px rgba(70, 123, 255, 0.2),
                0 0 24px rgba(160, 73, 255, 0.15),
                0 0 40px rgba(255, 73, 197, 0.1);
            animation: navCtaGlow 2.8s ease-in-out infinite;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .nav-cta:hover {
            border-color: #814bc8;
            transform: translateY(-2px);
            box-shadow:
                0 0 18px rgba(70, 123, 255, 0.35),
                0 0 36px rgba(160, 73, 255, 0.3),
                0 0 60px rgba(255, 73, 197, 0.25);
            animation: none;
        }
        
        @keyframes navCtaGlow {
            0%, 100% {
                box-shadow:
                    0 0 10px rgba(70, 123, 255, 0.15),
                    0 0 20px rgba(160, 73, 255, 0.12),
                    0 0 35px rgba(255, 73, 197, 0.08);
            }
            50% {
                box-shadow:
                    0 0 16px rgba(70, 123, 255, 0.25),
                    0 0 32px rgba(160, 73, 255, 0.2),
                    0 0 50px rgba(255, 73, 197, 0.15);
            }
        }
        
        .nav-cta svg {
            width: 16px;
            height: 16px;
            stroke: currentColor;
        }
        
        /* Hamburger Menu */
        .nav-hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            cursor: pointer;
            gap: 5px;
            padding: 0;
            transition: all 0.3s ease;
        }
        
        .nav-hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .nav-hamburger span {
            width: 20px;
            height: 2px;
            background: #fff;
            border-radius: 2px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .nav-hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        
        .nav-hamburger.active span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }
        
        .nav-hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }
        
        /* Mobile Menu Overlay */
        .nav-mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100vw;
            height: 100vh;
            height: 100dvh;
            background: linear-gradient(180deg, #000 0%, #0a0a0a 50%, #111 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 100px 24px 40px;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transform: translateY(-20px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 9998;
        }
        
        .nav-mobile-menu.active {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateY(0);
        }
        
        .nav-mobile-list {
            list-style: none;
            margin: 0;
            padding: 0;
            text-align: center;
            position: relative;
            z-index: 10;
        }
        
        .nav-mobile-list li {
            margin-bottom: 8px;
        }
        
        .nav-mobile-link {
            display: inline-block;
            padding: 16px 32px;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 24px;
            font-weight: 600;
            font-family: 'Segoe UI', system-ui, sans-serif;
            border-radius: 16px;
            transition: all 0.3s ease;
            cursor: pointer;
            -webkit-tap-highlight-color: rgba(129, 75, 200, 0.3);
            touch-action: manipulation;
        }
        
        .nav-mobile-link:hover,
        .nav-mobile-link:active {
            color: #fff;
            background: rgba(129, 75, 200, 0.15);
            transform: scale(1.05);
        }
        
        .nav-mobile-bottom {
            margin-top: 48px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            position: relative;
            z-index: 10;
        }
        
        .nav-mobile-lang {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 24px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 100px;
            color: #fff;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            -webkit-tap-highlight-color: rgba(129, 75, 200, 0.3);
            touch-action: manipulation;
        }
        
        .nav-mobile-lang:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .nav-mobile-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 40px;
            background: transparent;
            border: 2px solid #ffffffbf;
            color: #fff;
            text-decoration: none;
            font-size: 18px;
            font-weight: 600;
            border-radius: 100px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 32px rgba(129, 75, 200, 0.3);
            cursor: pointer;
            -webkit-tap-highlight-color: rgba(129, 75, 200, 0.3);
            touch-action: manipulation;
        }
        
        .nav-mobile-cta:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 40px rgba(129, 75, 200, 0.5);
        }
        
        /* Body scroll lock */
        body.mobile-menu-open {
            overflow: hidden;
            position: fixed;
            width: 100%;
            height: 100%;
        }
        
        /* Tablet Responsive (1024px and below) */
        @media (max-width: 1024px) {
            .nav-modern {
                padding: 12px 24px;
            }
            
            .nav-pill {
                padding: 4px 6px;
            }
            
            .nav-link {
                padding: 8px 14px;
                font-size: 13px;
            }
            
            .nav-cta {
                padding: 10px 20px;
                font-size: 13px;
            }
        }
        
        /* Mobile Responsive (768px and below) */
        @media (max-width: 768px) {
            .nav-modern {
                padding: 12px 20px;
            }
            
            .nav-container {
                justify-content: space-between;
            }
            
            .nav-logo img {
                height: 44px;
            }
            
            .nav-pill,
            .nav-cta-wrapper {
                display: none;
            }
            
            .nav-hamburger {
                display: flex;
            }
        }
        
        /* Keep old nav styles hidden but available for other pages */
        nav:not(.nav-modern) {
            display: none;
        }

        .logo {
            padding-top: 15px;
            font-size: 24px;
            font-weight: bold;
            background: linear-gradient(135deg, #814bc8, #c84baf);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Roboto', Arial, sans-serif;
        }

        .logo img {
            height: 50px;
            width: auto;
        }

        .logo-icon {
            padding-top: 15px;
            width: 40px;
            height: 40px;
            background-image: url('..img/logo.png');
            background-size: cover;
            background-position: center;
        }

        .nav-links {
            padding-top: 15px;
            display: flex;
            gap: 25px;
            justify-content: flex-end;
            align-items: center;
            flex: 1;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 18px;
            font-weight: 500;
            letter-spacing: 0.1em;
            padding: 0;
            border-radius: 0;
            display: block;
            font-family: 'Roboto', Arial, sans-serif;
        }

        .nav-links a:hover {
            color: #814bc8;
            background: rgba(129,75,200,0.08);
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            width: 30px;
            height: 24px;
            background: none;
            border: none;
            cursor: pointer;
            gap: 6px;
            padding: 0;
            margin-left: auto;
        }

        .hamburger span {
            width: 100%;
            height: 3px;
            background: #fff;
            border-radius: 2px;
            transition: all 0.3s cubic-bezier(0.4, 0.2, 0.2, 1);
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }

        /* Body scroll lock when mobile menu is open */
        body.mobile-menu-open {
            overflow: hidden;
            position: fixed;
            width: 100%;
            height: 100%;
        }
        /* Company Logos Slider */
        .companies {
            padding: 100px 0;
            background: #0a0a0a;
        }

        .logo-slider {
            overflow: hidden;
            position: relative;
            margin-top: 40px;
            /* Fade out sides using a mask for modern browsers */
            -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 18%, #000 82%, transparent 100%);
            mask-image: linear-gradient(to right, transparent 0%, #000 18%, #000 82%, transparent 100%);
            /* fallback for older browsers: use pseudo-elements */
        }

        .logo-slider::before, .logo-slider::after {
            content: '';
            position: absolute;
            top: 0;
            width: 80px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }
        .logo-slider::before {
            left: 0;
            background: linear-gradient(to right, #0a0a0a 60%, transparent 100%);
        }
        .logo-slider::after {
            right: 0;
            background: linear-gradient(to left, #0a0a0a 60%, transparent 100%);
        }

        .logo-track {
            display: flex;
            gap: 60px;
            animation: scroll 20s linear infinite;
        }

        .company-logo {
            min-width: 150px;
            height: 60px;
            background: #1a1a1a;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #814bc8;
            font-weight: bold;
            font-size: 18px;
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .companies-cta {
            text-align: center;
            margin-top: 60px;
            padding-top: 20px;
        }

        .companies-cta a {
            text-decoration: none;
            color: #fff;
        }


        /* Mobile Navigation */
        @media (max-width: 768px) {
            nav {
                padding: 16px 20px;
                display: flex;
                justify-content: center;
                align-items: center;
                position: relative;
                z-index: 10000;
            }

            .logo {
                padding-top: 8px;
                font-size: 20px;
                flex: 1;
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .logo img {
                height: 60px !important;
            }

            .logo-text {
                display: none;
            }

            .hamburger {
                display: flex;
                position: absolute;
                right: 20px;
                top: 50%;
                transform: translateY(-50%);
                z-index: 10001;
            }

            .nav-links {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                width: 100vw;
                height: 100vh;
                height: 100dvh;
                min-height: 100vh;
                background: linear-gradient(135deg, #000 0%, #0a0a0a 50%, #111 100%);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 100px 24px 40px 24px;
                gap: 0;
                display: none;
                overflow-y: auto;
                overscroll-behavior: contain;
                -webkit-overflow-scrolling: touch;
                z-index: 9999;
                align-items: center;
                justify-content: flex-start;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links a:not(.lang-toggle) {
                display: block;
                width: 100%;
                max-width: 400px;
                padding: 24px 32px;
                font-size: 28px;
                font-weight: 600;
                text-align: center;
                border-bottom: 1px solid rgba(129,75,200,0.2);
                margin-bottom: 8px;
                transition: all 0.3s cubic-bezier(0.4, 0.2, 0.2, 1);
                background: rgba(129,75,200,0.05);
                border-radius: 12px;
            }

            .nav-links a:not(.lang-toggle):hover,
            .nav-links a:not(.lang-toggle):active {
                background: rgba(129,75,200,0.15);
                color: #814bc8;
                transform: translateX(8px);
                border-color: rgba(129,75,200,0.4);
            }

            .lang-toggle {
                margin-left: 0;
                width: auto;
                justify-content: center;
                margin-top: 32px;
                padding: 16px 48px;
                font-size: 20px;
                background: rgba(129,75,200,0.2);
                border: 2px solid rgba(129,75,200,0.5);
            }

            .lang-toggle:hover {
                background: rgba(129,75,200,0.3);
                border-color: rgba(129,75,200,0.7);
            }

            .hero {
                height: 80vh;
            }

            .hero h1 {
                font-size: 38px;
                margin-bottom: 16px;
                padding: 0 16px;
            }

            .hero p {
                font-size: 16px;
                margin-bottom: 28px;
                padding: 0 16px;
            }

            .cta-button {
                padding: 12px 32px;
                font-size: 16px;
            }

            .section-title {
                font-size: 36px;
                margin-bottom: 32px;
            }

            .stat-number {
                font-size: 48px;
            }

            .stat-label {
                font-size: 14px;
            }

            .stats {
                padding: 50px 16px;
                gap: 30px;
            }

            .benefits {
                padding: 0 12px 50px 12px;
                margin-top: 20px;
            }

            .benefits-title {
                font-size: 32px;
            }

            .benefits-desc {
                font-size: 16px;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .benefit-card {
                padding: 20px 16px;
            }

            .benefit-card-title {
                font-size: 20px;
            }

            .benefit-card-desc {
                font-size: 14px;
            }

            .services {
                padding: 60px 16px;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .service-card {
                padding: 20px 16px;
                min-height: auto;
            }

            .service-number {
                font-size: 48px;
            }

            .service-card h3 {
                font-size: 20px;
            }

            .service-card p {
                font-size: 14px;
            }

            .companies {
                padding: 60px 16px;
            }

            .pricing {
                padding: 60px 16px;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .pricing-card {
                padding: 20px 16px;
            }

            .pricing-title {
                font-size: 32px;
            }

            .contact {
                padding: 60px 16px;
            }

            .contact-form {
                max-width: 100%;
                padding: 0 12px;
            }

            .company-logo {
                min-width: 100px;
                height: 50px;
                font-size: 12px;
            }

            .logo-slider {
                margin-top: 20px;
            }
        }

        @media (max-width: 480px) {
            nav {
                padding: 12px 16px;
            }

            .logo {
                font-size: 18px;
                padding-top: 6px;
            }

            .logo img {
                height: 50px !important;
            }

            .nav-links a {
                font-size: 18px;
                padding: 16px 0;
            }

            .hero {
                height: 70vh;
                padding-top: 60px;
            }

            .hero h1 {
                font-size: 26px;
                margin-bottom: 10px;
                padding: 0 12px;
            }

            .hero p {
                font-size: 13px;
                margin-bottom: 20px;
                padding: 0 12px;
            }

            .cta-button {
                padding: 11px 26px;
                font-size: 13px;
            }

            .section-title {
                font-size: 24px;
                margin-bottom: 20px;
            }
        }

        @media (max-width: 480px) {
            .cta-button {
                padding: 8px 16px;
                font-size: 12px;
            }

            .stat-number {
                font-size: 32px;
            }

            .stat-label {
                font-size: 11px;
            }

            .stats {
                padding: 30px 12px;
                gap: 24px;
            }

            .benefits {
                padding: 0 10px 30px 10px;
                margin-top: 10px;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .benefit-card {
                padding: 16px 12px;
            }

            .benefits-badge {
                font-size: 12px;
                padding: 5px 14px;
                margin-bottom: 20px;
            }

            .benefits-title {
                font-size: 22px;
                margin-bottom: 10px;
            }

            .benefits-desc {
                font-size: 13px;
                margin-bottom: 24px;
            }

            .benefit-card-title {
                font-size: 16px;
                margin-bottom: 8px;
            }

            .benefit-card-desc {
                font-size: 12px;
                line-height: 1.4;
            }

            .services {
                padding: 40px 12px;
            }

            .services-grid {
                gap: 12px;
            }

            .service-card {
                padding: 16px 12px;
                min-height: 160px;
            }

            .service-number {
                font-size: 36px;
                top: 10px;
                right: 12px;
            }

            .service-icon {
                width: 36px;
                height: 36px;
                font-size: 18px;
                margin-bottom: 12px;
            }

            .service-icon i {
                width: 18px;
                height: 18px;
            }

            .service-card h3 {
                font-size: 16px;
                margin-bottom: 8px;
            }

            .service-card p {
                font-size: 12px;
                line-height: 1.4;
            }

            .companies {
                padding: 40px 12px;
            }

            .logo-slider {
                margin-top: 16px;
            }

            .logo-track {
                gap: 50px;
                animation: scroll 15s linear infinite;
            }

            .company-logo {
                min-width: 150px;
                height: 60px;
                font-size: 18px;
                border-radius: 10px;
            }

            .pricing {
                padding: 40px 12px;
            }

            .pricing-header {
                margin-bottom: 24px;
            }

            .pricing-badge {
                font-size: 12px;
                padding: 5px 14px;
                margin-bottom: 16px;
            }

            .pricing-title {
                font-size: 22px;
                margin-bottom: 10px;
            }

            .pricing-desc {
                font-size: 13px;
                margin-bottom: 20px;
            }

            .pricing-toggle-row {
                gap: 10px;
                margin-bottom: 20px;
            }

            .pricing-toggle-label {
                font-size: 13px;
            }

            .pricing-grid {
                gap: 12px;
            }

            .pricing-card {
                padding: 16px 12px;
            }

            .pricing-card-header {
                font-size: 16px;
                margin-bottom: 8px;
            }

            .pricing-card-price {
                font-size: 22px;
            }

            .pricing-card-price-unit {
                font-size: 12px;
            }

            .pricing-card-desc {
                font-size: 12px;
                margin-bottom: 12px;
            }

            .pricing-card-btn {
                padding: 10px 20px;
                font-size: 13px;
                margin-bottom: 12px;
            }

            .pricing-card-includes {
                font-size: 12px;
                margin-bottom: 10px;
            }

            .pricing-card-list {
                gap: 6px;
            }

            .pricing-card-list li {
                font-size: 11px;
                line-height: 1.4;
                margin-bottom: 3px;
            }

            .contact {
                padding: 40px 12px;
            }

            .contact-form {
                padding: 0;
            }

            .contact-form input,
            .contact-form textarea {
                padding: 12px;
                font-size: 13px;
            }

            .contact-form textarea {
                min-height: 120px;
            }

            .contact-form button {
                padding: 11px 26px;
                font-size: 13px;
            }
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, #814bc8 0%, transparent 70%);
            animation: rotate 20s linear infinite;
            opacity: 0.1;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-content a {
            text-decoration: none;
            color: #fff;
        }

        .hero h1 {
            font-size: 52px;
            margin-bottom: 20px;
            padding: 0 24px;
            background: linear-gradient(135deg, #fff, #814bc8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: fadeInUp 1s ease-out;
            line-height: 1.3;
        }

        .hero p {
            font-size: 18px;
            color: #aaa;
            margin-bottom: 40px;
            padding: 0 24px;
            animation: fadeInUp 1s ease-out 0.3s backwards;
            line-height: 1.5;
        }

        .cta-button {
            padding: 15px 40px;
            font-size: 18px;
            background: #814bc8;
            color: #fff;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            animation: fadeInUp 1s ease-out 0.6s backwards;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(129, 75, 200, 0.5);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Stats Section */
        .stats {
            padding: 100px 50px;
            display: flex;
            justify-content: center;
            gap: 80px;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 64px;
            font-weight: bold;
            color: #814bc8;
        }

        .stat-label {
            font-size: 18px;
            color: #aaa;
            margin-top: 10px;
        }

        /* Services - new stacked card design */
        .services {
            padding: 100px 32px;
            max-width: 100%;
            margin: 0 auto;
            background: #040406;
        }

        .section-title {
            text-align: center;
            font-size: 48px;
            margin-bottom: 48px;
            background: linear-gradient(135deg, #fff 0%, #814bc8 50%, #c84baf 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
            gap: 28px;
            max-width: 1180px;
            margin: 0 auto;
        }

        .service-card {
            position: relative;
            padding: 32px;
            background: linear-gradient(135deg, #0f0f12 0%, #0b0b0e 70%);
            border-radius: 18px;
            border: 1px solid #1f1f25;
            box-shadow: 0 18px 48px rgba(0,0,0,0.35), 0 8px 24px rgba(129,75,200,0.08);
            overflow: hidden;
            transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
            min-height: 210px;
        }

        .service-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 20% 20%, rgba(129,75,200,0.18), transparent 42%);
            opacity: 0.75;
            pointer-events: none;
        }

        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 26px 70px rgba(0,0,0,0.45), 0 14px 34px rgba(129,75,200,0.18);
            border-color: rgba(129,75,200,0.6);
        }

        .service-card::after {
            content: '';
            position: absolute;
            top: -60%;
            left: -30%;
            width: 60%;
            height: 220%;
            background: linear-gradient(120deg, transparent, rgba(85, 85, 85, 0.55), transparent);
            transform: translateX(-120%);
            transition: transform 0.6s ease;
        }

        .service-card:hover {
            transform: translateY(-1px) scale(1.02);
            
        }

        .service-card:hover::after {
            transform: translateX(220%);
        }
        .service-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 46px;
            height: 46px;
            border-radius: 14px;
            background: rgba(129,75,200,0.14);
            color: #c84baf;
            font-size: 26px;
            margin-bottom: 18px;
            position: relative;
            z-index: 1;
        }
        
        .service-icon i {
            width: 26px;
            height: 26px;
            stroke-width: 2px;
        }

        .service-number {
            position: absolute;
            top: 18px;
            right: 22px;
            font-size: 72px;
            font-weight: 700;
            color: rgba(129,75,200,0.12);
            z-index: 0;
            line-height: 1;
            letter-spacing: -1px;
        }

        .service-card h3 {
            font-size: 22px;
            margin-bottom: 10px;
            color: #fff;
            position: relative;
            z-index: 1;
            font-weight: 700;
        }

        .service-card p {
            color: #b4b4bc;
            line-height: 1.6;
            position: relative;
            z-index: 1;
            font-size: 15px;
        }

        .service-card.service-wide {
            grid-column: span 2;
        }

        @media (max-width: 960px) {
            .service-card.service-wide {
                grid-column: span 1;
            }
        }


        /* Final CTA Section */
        .final-cta {
            position: relative;
            padding: 80px 24px;
            display: flex;
            justify-content: center;
            overflow: hidden;
        }

        .final-cta__blob {
            position: absolute;
            width: 520px;
            height: 520px;
            right: 8%;
            top: -120px;
            background: radial-gradient(circle, rgba(76, 94, 255, 0.35), rgba(156, 73, 255, 0.18) 50%, rgba(255, 73, 197, 0.08) 70%, transparent 72%);
            filter: blur(20px);
            opacity: 0.7;
            pointer-events: none;
            z-index: 0;
        }

        .final-cta__inner {
            position: relative;
            z-index: 1;
            width: min(1100px, 100%);
            padding: 44px 48px;
            border-radius: 22px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(10px);
            box-shadow:
                0 0 18px rgba(70, 123, 255, 0.25),
                0 0 40px rgba(160, 73, 255, 0.2),
                0 0 70px rgba(255, 73, 197, 0.18);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 32px;
            animation: glowPulse 2.8s ease-in-out infinite;
            transition: box-shadow 0.45s ease, transform 0.45s ease;
        }

        .final-cta.is-active .final-cta__inner {
            animation-duration: 1.8s;
            box-shadow:
                0 0 24px rgba(70, 123, 255, 0.38),
                0 0 60px rgba(160, 73, 255, 0.32),
                0 0 100px rgba(255, 73, 197, 0.3);
        }

        .final-cta__inner:hover {
            transform: translateY(-2px);
            box-shadow:
                0 0 28px rgba(70, 123, 255, 0.46),
                0 0 70px rgba(160, 73, 255, 0.4),
                0 0 110px rgba(255, 73, 197, 0.36);
        }

        .final-cta__content h2 {
            font-size: 36ppx;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

        .final-cta__content p {
            color: #c8c8d6;
            font-size: 16px;
        }

        .final-cta__actions {
            display: flex;
            gap: 16px;
            align-items: center;
            flex-wrap: wrap;
        }

        .cta-primary-glow {
            position: relative;
            background: linear-gradient(90deg, #814bc8 0%, #d53cff 50%, #814bc8 100%);
            color: #fff;
            border: none;
            padding: 14px 34px;
            border-radius: 999px;
            font-weight: 600;
            letter-spacing: 0.02em;
            overflow: hidden;
            box-shadow: 0 0 18px rgba(129, 75, 200, 0.35);
            transition: transform 0.35s ease, box-shadow 0.35s ease;
        }

        .cta-primary-glow::after {
            content: '';
            position: absolute;
            top: -60%;
            left: -30%;
            width: 60%;
            height: 220%;
            background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.55), transparent);
            transform: translateX(-120%);
            transition: transform 0.6s ease;
        }

        .cta-primary-glow:hover {
            transform: translateY(-1px) scale(1.02);
            box-shadow: 0 0 26px rgba(99, 110, 255, 0.55), 0 0 46px rgba(255, 73, 197, 0.4);
        }

        .cta-primary-glow:hover::after {
            transform: translateX(220%);
        }

        .cta-secondary {
            color: #c7c6ff;
            text-decoration: none;
            font-weight: 600;
            position: relative;
        }

        .cta-secondary::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, rgba(117, 62, 255, 0.8), rgba(255, 73, 197, 0.8));
            opacity: 0.6;
            transition: opacity 0.3s ease;
        }

        .cta-secondary:hover::after {
            opacity: 1;
        }

        @keyframes glowPulse {
            0%, 100% {
                box-shadow:
                    0 0 18px rgba(70, 123, 255, 0.2),
                    0 0 38px rgba(160, 73, 255, 0.18),
                    0 0 60px rgba(255, 73, 197, 0.12);
            }
            50% {
                box-shadow:
                    0 0 26px rgba(70, 123, 255, 0.3),
                    0 0 56px rgba(160, 73, 255, 0.26),
                    0 0 90px rgba(255, 73, 197, 0.2);
            }
        }

        /* Modal */
        body.modal-open {
            overflow: hidden;
        }

        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(6, 8, 20, 0.78);
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            z-index: 99999;
        }

        .modal-overlay.is-open {
            opacity: 1;
            pointer-events: auto;
        }

        .modal-dialog {
            position: relative;
            width: min(980px, 100%);
            height: 80vh;
            background: rgba(12, 14, 28, 0.92);
            border-radius: 22px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            box-shadow:
                0 0 24px rgba(70, 123, 255, 0.25),
                0 0 60px rgba(160, 73, 255, 0.2);
            display: flex;
            flex-direction: column;
            transform: translateY(10px);
            transition: transform 0.3s ease;
        }

        .modal-overlay.is-open .modal-dialog {
            transform: translateY(0);
        }

        .modal-close {
            position: absolute;
            right: 18px;
            top: 16px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #fff;
            border-radius: 999px;
            width: 38px;
            height: 38px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .modal-close i {
            width: 18px;
            height: 18px;
        }

        .modal-header {
            padding: 24px 32px 12px;
        }

        .modal-header h3 {
            margin: 0;
            font-size: 22px;
        }

        .modal-body {
            flex: 1;
            padding: 0 24px 24px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .modal-body iframe {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 16px;
            background: #0b0e1f;
        }

        .modal-loading {
            color: #c8c8d6;
        }

        .modal-fallback {
            text-align: center;
            color: #c8c8d6;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            padding: 24px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.12);
        }

        @media (max-width: 768px) {
            .final-cta__inner {
                flex-direction: column;
                align-items: flex-start;
                padding: 32px 28px;
            }

            .final-cta__content h2 {
                font-size: 25px;
            }

            .final-cta__actions {
                flex-direction: column;
                align-items: stretch;
                width: 100%;
            }

            .final-cta__actions .cta-button,
            .final-cta__actions .cta-secondary {
                width: 100%;
                text-align: center;
            }

            .modal-dialog {
                width: 100%;
                height: 92vh;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .final-cta__inner {
                animation: none;
            }

            .cta-primary-glow::after {
                transition: none;
            }
        }

        /* Contact Section */
        .contact {
            padding: 100px 50px;
            background: #0a0a0a;
            text-align: center;
        }

        .contact-wrapper {
            display: flex;
            gap: 40px;
            max-width: 1100px;
            margin: 0 auto;
            align-items: stretch;
        }

        .contact-form {
            flex: 1;
            max-width: 100%;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 20px;
            text-align: left;
        }

        .contact-form input,
        .contact-form textarea {
            padding: 15px;
            background: #1a1a1a;
            border: 1px solid #333;
            border-radius: 10px;
            color: #fff;
            font-size: 16px;
            font-family: inherit;
            transition: all 0.3s ease;
            position: relative;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: #814bc8;
            background: #1f1f1f;
            box-shadow: 0 0 20px rgba(129, 75, 200, 0.4),
                        0 0 40px rgba(200, 75, 175, 0.2),
                        inset 0 0 15px rgba(129, 75, 200, 0.1);
            animation: inputGlow 2s ease-in-out infinite;
        }

        @keyframes inputGlow {
            0%, 100% {
                box-shadow: 0 0 20px rgba(129, 75, 200, 0.4),
                            0 0 40px rgba(200, 75, 175, 0.2),
                            inset 0 0 15px rgba(129, 75, 200, 0.1);
            }
            50% {
                box-shadow: 0 0 30px rgba(129, 75, 200, 0.6),
                            0 0 60px rgba(200, 75, 175, 0.3),
                            inset 0 0 20px rgba(129, 75, 200, 0.15);
            }
        }

        .contact-form textarea {
            min-height: 150px;
            resize: vertical;
        }

        /* Contact Info Card */
        .contact-info-card {
            flex: 1;
            background: #111;
            border: 1px solid #232323;
            border-radius: 18px;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 32px;
        }

        .contact-info-items {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            justify-content: center;
        }

        .contact-info-item {
            display: flex;
            align-items: center;
            gap: 16px;
            text-decoration: none;
            color: #fff;
            transition: all 0.3s ease;
        }

        .contact-info-item:hover {
            color: #814bc8;
        }

        .contact-info-item:hover .contact-info-text {
            font-size: 20px;
        }

        .contact-info-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(129, 75, 200, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .contact-info-item:hover .contact-info-icon {
            background: rgba(129, 75, 200, 0.3);
            transform: scale(1.1);
        }

        .contact-info-icon i {
            width: 24px;
            height: 24px;
            color: #814bc8;
        }

        .contact-info-text {
            font-size: 18px;
            font-weight: 500;
            transition: font-size 0.3s ease;
        }

        .contact-social {
            border-top: 1px solid #232323;
            padding-top: 24px;
            text-align: center;
        }

        .contact-social-title {
            color: #888;
            font-size: 14px;
            margin-bottom: 16px;
        }

        .contact-social-links {
            display: flex;
            justify-content: center;
            gap: 16px;
        }

        .social-icon-link {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: rgba(129, 75, 200, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-icon-link:hover {
            background: rgba(129, 75, 200, 0.3);
            transform: translateY(-3px);
        }

        .social-icon-link i,
        .social-icon-link svg {
            width: 24px;
            height: 24px;
            color: #fff;
            stroke: #fff;
        }

        @media (max-width: 900px) {
            .contact-wrapper {
                flex-direction: column;
            }

            .contact-info-card {
                padding: 32px 24px;
            }
        }

        @media (max-width: 480px) {
            .contact {
                padding: 60px 16px;
            }

            .contact-info-items {
                flex-direction: column;
                align-items: center;
            }

            .contact-info-text {
                font-size: 16px;
            }

            .contact-info-item:hover .contact-info-text {
                font-size: 18px;
            }
        }

        /* Footer */
        footer {
            padding: 40px;
            text-align: center;
            color: #666;
        }




nav {
  font-family: 'Roboto', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  position: relative;
  padding-bottom: 12px;
  padding-top: 12px;
  margin-top: 0;
  border-top: 0;
  top: -8px;
  left: -8px; 
  width: calc(100% + 16px);
}

/* Language Toggle Button */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(129,75,200,0.12);
  border: 1px solid rgba(129,75,200,0.3);
  border-radius: 24px;
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0.2, 0.2, 1);
  margin-left: 12px;
}

.lang-toggle:hover {
  background: rgba(129,75,200,0.22);
  border-color: rgba(129,75,200,0.5);
  transform: translateY(-2px);
}

.lang-flag {
  width: 20px;
  height: auto;
  border-radius: 2px;
}

.lang-text {
  font-weight: 600;
  letter-spacing: 0.05em;
}


/* Benefits Section Header & Elements */
.benefits-header {
    text-align: center;
}
.benefits-badge {
    margin-bottom: 32px;
    background: #181818;
    color: #fff;
    font-size: 14px;
    padding: 6px 18px;
    border-radius: 8px;
    box-shadow: none;
}
.benefits-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}
.benefits-desc {
    color: #bbb;
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 48px auto;
}
.benefit-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.benefit-card-desc {
    color: #bbb;
    font-size: 16px;
}

/* Pricing Section Header & Elements */
.pricing-header {
    text-align: center;
}
.pricing-badge {
    margin-bottom: 32px;
    background: #181818;
    color: #fff;
    font-size: 14px;
    padding: 6px 18px;
    border-radius: 8px;
    box-shadow: none;
}
.pricing-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}
.pricing-desc {
    color: #bbb;
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 48px auto;
}
.pricing-toggle-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-bottom: 36px;
}
.pricing-toggle-label {
    color: #fff;
    font-size: 16px;
}
.pricing-toggle {
    display: inline-block;
    position: relative;
    width: 48px;
    height: 24px;
}
.pricing-toggle input[type="checkbox"] {
    opacity: 0;
    width: 0;
    height: 0;
}
.pricing-toggle-bg {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #222;
    border-radius: 16px;
    transition: .4s;
}
.pricing-toggle-knob {
    position: absolute;
    left: 4px;
    top: 4px;
    width: 16px;
    height: 16px;
    background: #814bc8;
    border-radius: 50%;
    transition: .4s;
}
.pricing-card-header {
    font-size: 22px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.pricing-card-icon {
    font-size: 20px;
    color: #814bc8;
}
.pricing-card-popular {
    background: #814bc8;
    color: #fff;
    font-size: 13px;
    padding: 2px 10px;
    border-radius: 8px;
    margin-left: 10px;
}
.pricing-card-price {
    font-size: 36px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 2px;
}
.pricing-card-price-unit {
    font-size: 18px;
    color: #bbb;
    font-weight: 400;
}
.pricing-card-desc {
    color: #bbb;
    font-size: 16px;
    margin-bottom: 24px;
}
.pricing-card-btn {
    width: 100%;
    margin-bottom: 24px;
}
.pricing-card-includes {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}
.pricing-card-list {
    color: #bbb;
    font-size: 15px;
    line-height: 1.7;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* H2 Gradient Cross Animation */
h2.section-title,
.benefits-title,
.journey-map .section-title {
    position: relative;
    background: linear-gradient(135deg, #fff, #814bc8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2.gradient-animate {
    animation: gradientCross 1.2s ease-out forwards;
}

@keyframes gradientCross {
    0% {
        background: linear-gradient(90deg, #814bc8 0%, #c84baf 15%, #fff 30%, #814bc8 50%, #fff 70%, #814bc8 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        background-size: 300% 100%;
        background-position: 100% 0;
    }
    80% {
        background: linear-gradient(90deg, #814bc8 0%, #c84baf 15%, #fff 30%, #814bc8 50%, #fff 70%, #814bc8 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        background-size: 300% 100%;
        background-position: 0% 0;
    }
    100% {
        background: linear-gradient(135deg, #fff, #814bc8);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        background-size: 100% 100%;
        background-position: 0% 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    h2.gradient-animate {
        animation: none;
    }
}

/* Journey Map Section */
.journey-map {
    padding: 100px 24px 80px;
    background: #000;
    position: relative;
    overflow: hidden;
}

.journey-subtitle {
    text-align: center;
    color: #888;
    font-size: 18px;
    margin-top: -20px;
    margin-bottom: 60px;
}

.journey-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0 60px;
}

.journey-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 100px;
    height: 100%;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
}

.journey-path {
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Start marker */
.journey-start {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 20px;
}

.journey-start__icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.journey-start__icon i {
    width: 32px;
    height: 32px;
    color: #814bc8;
    z-index: 2;
}

.journey-start__badge {
    margin-top: 16px;
    background: linear-gradient(90deg, #814bc8 0%, #c849ff 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 8px 20px;
    border-radius: 999px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

/* Journey Steps */
.journey-step {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto auto 1fr;
    align-items: center;
    gap: 24px;
    margin-bottom: 80px;
}

.journey-step--left {
    grid-template-columns: 1fr auto auto 1fr;
}

.journey-step--left .journey-step__content {
    grid-column: 1;
    text-align: right;
    padding-right: 20px;
}

.journey-step--left .journey-step__icon {
    grid-column: 2;
}

.journey-step--left .journey-step__number {
    grid-column: 3;
}

.journey-step--right {
    grid-template-columns: 1fr auto auto 1fr;
}

.journey-step--right .journey-step__number {
    grid-column: 2;
}

.journey-step--right .journey-step__icon {
    grid-column: 3;
}

.journey-step--right .journey-step__content {
    grid-column: 4;
    text-align: left;
    padding-left: 20px;
}

.journey-step__number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4b89c8 0%, #8b49ff 50%, #ed49ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 0 24px rgba(139, 73, 255, 0.5);
}

.journey-step__icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.journey-step__icon i {
    width: 32px;
    height: 32px;
    color: #814bc8;
}

.journey-step__content {
    max-width: 280px;
}

.journey-step__title {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
    line-height: 1.1;
    background: linear-gradient(90deg, #3e7bff 0%, #8b49ff 50%, #ff49c5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.journey-step__desc {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
}

/* End marker */
.journey-end {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 80px;
}

.journey-end__icon {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b49ff 0%, #ff49c5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(255, 73, 197, 0.4), 0 0 80px rgba(139, 73, 255, 0.3);
}

.journey-end__icon i {
    width: 44px;
    height: 44px;
    color: #fff;
}

.journey-end__badge {
    margin-top: 20px;
    background: linear-gradient(90deg, #8b49ff 0%, #ff49c5 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 10px 24px;
    border-radius: 999px;
    text-transform: uppercase;
}

.journey-end__text {
    margin-top: 12px;
    color: #000;
    font-size: 15px;
    font-weight: 700;
    background-color: yellow;
    padding: 2px 8px;
    border-radius: 4px;
}

/* Journey CTA */
.journey-map .final-cta__inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 44px 48px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow:
        0 0 18px rgba(70, 123, 255, 0.2),
        0 0 40px rgba(160, 73, 255, 0.15),
        0 0 70px rgba(255, 73, 197, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    animation: glowPulse 2.8s ease-in-out infinite;
}

.journey-map .final-cta__inner:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 28px rgba(70, 123, 255, 0.35),
        0 0 70px rgba(160, 73, 255, 0.3),
        0 0 110px rgba(255, 73, 197, 0.25);
}

.journey-map .cta-primary-glow {
    display: flex;
    align-items: center;
    gap: 10px;
}

.journey-map .cta-primary-glow i {
    width: 20px;
    height: 20px;
}

/* Journey Map Responsive */
@media (max-width: 900px) {
    .journey-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .journey-step--left .journey-step__content,
    .journey-step--right .journey-step__content {
        text-align: center;
        padding: 0;
        order: 3;
    }

    .journey-step__number {
        order: 1;
    }

    .journey-step__icon {
        order: 2;
    }

    .journey-step__title {
        font-size: 24px;
    }

    .journey-line {
        display: none;
    }

    .journey-map .final-cta__inner {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }

    .journey-map .final-cta__actions {
        width: 100%;
        flex-direction: column;
    }

    .journey-map .cta-primary-glow,
    .journey-map .cta-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .journey-map {
        padding: 60px 16px 50px;
    }

    .journey-subtitle {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .journey-start__icon {
        width: 60px;
        height: 60px;
    }

    .journey-start__icon i {
        width: 26px;
        height: 26px;
    }

    .journey-start__badge {
        font-size: 10px;
        padding: 6px 14px;
    }

    .journey-step {
        margin-bottom: 50px;
    }

    .journey-step__number {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }

    .journey-step__icon {
        width: 52px;
        height: 52px;
    }

    .journey-step__icon i {
        width: 26px;
        height: 26px;
    }

    .journey-step__title {
        font-size: 20px;
    }

    .journey-step__desc {
        font-size: 13px;
    }

    .journey-end__icon {
        width: 72px;
        height: 72px;
    }

    .journey-end__icon i {
        width: 32px;
        height: 32px;
    }

    .journey-end__badge {
        font-size: 12px;
        padding: 8px 18px;
    }

    .journey-end__text {
        font-size: 13px;
    }
}
